/* ===== FONDO GENERAL ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: 
        linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), 
        url('../IMAGES/fondoTextura.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.casa-detalle {
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.85); /* capa suave */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.4);
}

/* ===== GALERÍA ===== */
/* ===== GALERÍA ===== */
.galeria {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centra todo */
    gap: 15px;
}

/* Imagen principal MÁS PEQUEÑA */
.galeria .imagen-principal img {
    width: 70%;               /* <-- cambia de 100% a 70% */
    max-height: 350px;        /* agrega límite */
    object-fit: contain;
    border-radius: 10px;
    background: #f2f2f2;
    padding: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

/* Miniaturas MÁS PEQUEÑAS */
.galeria .miniaturas img {
    width: 90px;        /* antes 130px */
    height: 60px;       /* antes 90px */
    object-fit: contain;
    border-radius: 6px;
    padding: 4px;
    background: white;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: 0.3s ease;
}

.galeria .miniaturas img:hover {
    transform: scale(1.05);
    border-color: #2563eb;
}


/* Imagen principal sin zoom */
.galeria .imagen-principal img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    background: #f2f2f2;
    padding: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

/* Miniaturas */
.galeria .miniaturas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.galeria .miniaturas img {
    width: 130px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #ddd;
    background: white;
    padding: 5px;
    transition: 0.3s ease;
    cursor: pointer;
}

.galeria .miniaturas img:hover {
    border-color: #2563eb;
    transform: scale(1.07);
}

/* ===== INFORMACIÓN ===== */
.detalle-info {
    margin-top: 25px;
}

.detalle-info h1 {
    font-size: 30px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.detalle-info .precio {
    font-size: 24px;
    font-weight: bold;
    color: #047857;
    margin-bottom: 15px;
}

.elemento {
    font-size: 18px;
    margin-bottom: 10px;
    color: #334155;
}

/* Botón */
.btn-contacto {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 26px;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 25px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-contacto:hover {
    background: #1d4ed8;
}
